home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / FROM32._B_ < prev    next >
Text File  |  1997-07-26  |  928b  |  34 lines

  1. #
  2. # Borland makefile for FROM [Win32]
  3. # Requires WIL32.DLL & WIL32.LIB
  4. #
  5. # To use: "make -ffrom32._B_"
  6. #
  7.  
  8. CCFLAGS = -c -DWIN32
  9.  
  10. from.exe: from.res from.obj from.def wil32.lib \
  11.             about.obj str.obj paint.obj async.obj readini.obj
  12.     tlink32 -Tpe -ax c0w32 @from.rsp ,from,from, wil32.lib cw32 import32,from,from
  13.  
  14. from.res: from.rc
  15.     brcc32 -dWIN32 from.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc32 $(CCFLAGS)  about.c
  19.  
  20. async.obj: async.c async.h wil.h
  21.    bcc32 $(CCFLAGS)  async.c
  22.  
  23. paint.obj: paint.c paint.h
  24.    bcc32 $(CCFLAGS)  paint.c
  25.  
  26. from.obj: from.c wil.h
  27.    bcc32 $(CCFLAGS)  from.c
  28.  
  29. readini.obj: readini.c readini.h wil.h
  30.    bcc32 $(CCFLAGS)  readini.c
  31.  
  32. str.obj: str.c str.h wil.h
  33.    bcc32 $(CCFLAGS)  str.c
  34.